home *** CD-ROM | disk | FTP | other *** search
/ SGI Varsity Update 1998 August / SGI Varsity Update 1998 August.iso / dist / dist6.5 / il_dev.idb / usr / include / il / ilScaleImg.h.z / ilScaleImg.h
C/C++ Source or Header  |  1998-07-29  |  3KB  |  84 lines

  1. #if 0 
  2.  
  3.     Copyright (c) 1991 SGI   All Rights Reserved
  4.     THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF SGI
  5.     The copyright notice above does not evidence any
  6.     actual or intended publication of such source code,
  7.     and is an unpublished work by Silicon Graphics, Inc.
  8.     This material contains CONFIDENTIAL INFORMATION that
  9.     is the property of Silicon Graphics, Inc. Any use,
  10.     duplication or disclosure not specifically authorized
  11.     by Silicon Graphics is strictly prohibited.
  12.     
  13.     RESTRICTED RIGHTS LEGEND:
  14.     
  15.     Use, duplication or disclosure by the Government is
  16.     subject to restrictions as set forth in subdivision
  17.     (c)(1)(ii) of the Rights in Technical Data and Computer
  18.     Software clause at DFARS 52.227-7013, and/or in similar
  19.     or successor clauses in the FAR, DOD or NASA FAR
  20.     Supplement.  Unpublished- rights reserved under the
  21.     Copyright Laws of the United States.  Contractor is
  22.     SILICON GRAPHICS, INC., 2011 N. Shoreline Blvd.,
  23.     Mountain View, CA 94039-7311
  24.  
  25. #endif
  26. /*
  27.     This class implements a simple linear scaling of an image.
  28. */
  29.  
  30. #ifndef _ilScaleImg_h_
  31. #define _ilScaleImg_h_
  32.  
  33. #if defined(IL2_5_COMPAT)
  34.     #include <il/ilPixel.h>
  35. #endif
  36.  
  37. #include <ifl/iflPixel.h>
  38. #include <il/ilMonadicImg.h>
  39.  
  40. class ilScaleImg : public ilMonadicImg {
  41. public:
  42.     iflClassListDeclare
  43.     ~ilScaleImg();
  44.     // external api: begin
  45.     ilScaleImg(ilImage* img = NULL);
  46.     // external api: name=ilScaleImgDomain
  47.     ilScaleImg(ilImage* img, double inMin, double inMax, 
  48.            double outMin=0, double outMax=255);
  49.  
  50.     void setRange(double outMin, double outMax);
  51.     void resetRange() { if (rangeSet) { rangeSet = FALSE; setAltered(); } }
  52.     void setDomain(double inMin, double inMax);
  53.     void resetDomain() { if (domainSet) { domainSet = FALSE; setAltered(); } }
  54.     void setScaling(double slope, double intercept);
  55.     void resetScaling() { if (scalingSet) { scalingSet = FALSE; setAltered(); } }
  56.     
  57.     double getSlope() { resetCheck(); return slope; }
  58.     double getIntercept() { resetCheck(); return intercept; }
  59.     void getDomain(double& inMin, double& inMax)
  60.         { resetCheck(); inMin = minIn; inMax = maxIn; }
  61.     void getRange(double& outMin, double& outMax)
  62.         { resetCheck(); outMin = minOut; outMax = maxOut; }
  63.     int isRangeSet() { resetCheck(); return rangeSet; }    
  64.     int isDomainSet() { resetCheck(); return domainSet; }    
  65.     int isScalingSet() { resetCheck(); return scalingSet; }        
  66.     // external api: end
  67.  
  68. protected:
  69.     virtual ilStatus calcPage(void* inBuf, void* outBuf, ilMpCacheRequest& req);
  70.     virtual void resetOp();
  71.     virtual ilHwOp* hwDefine();
  72.     void initDomain(double inMin, double inMax);
  73.     void computeScale();
  74.  
  75. private:
  76.     void init(ilImage* img);
  77.     
  78.     double minIn, maxIn, minOut, maxOut;
  79.     double slope, intercept;
  80.     double minClip, maxClip;
  81.     int domainSet, scalingSet, rangeSet;
  82. };
  83. #endif
  84.